home *** CD-ROM | disk | FTP | other *** search
/ Remix Doll 3: Dirty Sally / Remix Doll 3: Dirty Sally.iso / drtyslly.exe / SHARED.DXR / 04965_strUtil.ls < prev    next >
Encoding:
Text File  |  1995-02-11  |  270 b   |  15 lines

  1. on delLastChar vStr
  2.   delete char length(vStr) of vStr
  3.   return vStr
  4. end
  5.  
  6. on delBgnEndQuote vStr
  7.   if char 1 of vStr = QUOTE then
  8.     delete char 1 of vStr
  9.   end if
  10.   if char length(vStr) of vStr = QUOTE then
  11.     set vStr to delLastChar(vStr)
  12.   end if
  13.   return vStr
  14. end
  15.